:root {
  --yellow: #FFD700; /* Amarillo */
  --darkGray: #151515; /* Fondo oscuro */
  --white: #ececec; /* Blanco claro */
  --black: #111111; /* Negro */
  --colorPrimary: var(--yellow); /* El color principal será el amarillo */
  --colorSecondary: var(--darkGray); /* El color secundario será el fondo oscuro */
  --cubicBezier: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@font-face {
  font-family: 'BankGothic'; /* Nombre que usarás para referirte a la fuente */
  src: url('fonts\BankGothic Md BT.ttf') format('woff2'),
       url('fonts\BankGothic Bold.ttf') format('woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Tipografía principal en toda la página */
    background-color: #f5f5f5; /* Color de fondo más claro y elegante */
    color: #333; /* Color de texto oscuro para buen contraste */
}

.topbar {
  background-color: #000;
  padding: 10px 0;
  color: #f5f5f5;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  position: relative;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  flex-wrap: wrap;
  
}

.topbar-content a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: normal;
  margin-right: 15px;
}

.topbar-content a:hover {
  color: #FFB700;
}

.contacto-izquierda {
  display: flex;
  align-items: center;
  gap: 15px;
}

.izquierdaTel {
  position: relative;
  right: 200px;
}

.correo {
  margin: 0 15px;
}

.redes {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  right: -200px;
}

.redes .social-text {
  color: #f5f5f5;
}

.social-text {

 color: #f5f5f5;
}

.redes a {
  font-size: 20px;
  color: black;
  text-decoration: none;
}

.redes a:hover {
  color: black;
}

.topbar .whatsapp i {
  font-size: 20px;
  margin-right: 5px;
  
}

@media (max-width: 1198px) {
  .topbar {
    display: none;
  }
}



/* Header */
header {
  position: absolute; /* Para que quede sobrepuesto sobre el banner */
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0)); /* Gradiente que se desvanece hacia el banner */
  padding: 20px 0;
  box-shadow: none;
  z-index: 1000; /* Asegura que esté por encima del banner */
  margin-top: 10px;
}
  
  /* Contenedor del logo y hamburguesa */
  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 30px;
  }
  
  /* Logo */
  .logo img {
    height: 80px;
    width: auto;
    cursor: pointer;
  }
  
  /* Menú hamburguesa */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger span {
    display: block;
    height: 4px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* NAV DESKTOP */
  nav {
    display: flex;
    justify-content: center; /* Centramos el menú */
    align-items: center;
    padding: 20px 0; /* Opcional: separación vertical */
  }
  
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 25px; /* AQUÍ: separamos los elementos */
  }
  
  nav ul li a {
  font-size: 1.2rem !important;
  text-transform: capitalize !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
  
  nav ul li a:hover {
    color: #FFD700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  }
  
  
  /* Capa oscura detrás del menú */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* Inicialmente está oculta */
  z-index: 999; /* Aseguramos que esté encima del contenido */
  transition: opacity 0.5s ease;
}

/* Menú móvil deslizándose desde la parte superior */
.mobile-menu {
  position: fixed;
  top: -100%; /* Comienza fuera de la vista (arriba) */
  left: 0;
  width: 100%;
  max-height: 80%; /* Limita la altura del menú */
  background: linear-gradient(135deg, #1c1c1c, #3a3a3a);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  transition: top 0.5s ease; /* Animación para el deslizamiento */
  z-index: 1000;
}

/* Activar el menú móvil */
.mobile-menu.active {
  top: 0; /* El menú se desliza hacia abajo */
}

/* Contenido del menú */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.mobile-menu ul li {
  margin: 20px 0;
  width: 100%;
}

.mobile-menu ul li a,
.mobile-menu ul li button {
  display: block;
  width: 100%;
  color: white !important; /* Forzar el color blanco con !important */
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li button:hover {
  background-color: #444; /* Fondo de los enlaces y botones al pasar el mouse */
}

/* Botón amarillo */
.mobile-menu ul li button.button-yellow {
  background-color: #ffc107;
  color: #1c1c1c; /* Letras en color oscuro para el botón */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-menu ul li button.button-yellow:hover {
  background-color: #e6ac00; /* Hover color para el botón */
}

/* Mostrar la capa oscura cuando el menú está abierto */
.overlay.active {
  display: block; /* Mostrar capa oscura cuando esté activa */
  opacity: 1; /* Aseguramos que la capa esté visible */
  z-index: 998; /* Mantener la capa detrás del menú */
}

/* Estilo para las barras del menú hamburguesa */
.hamburger.active .bar {
  background-color: #fff; /* Cambia el color de las barras */
}
  
  @media (min-width: 1024px) {
    nav {
        display: flex;
        justify-content: center; /* Centra todo el contenido de nav */
        align-items: center;
        width: 100%;
      }
    
      /* Contenedor de los links */
      nav ul {
        display: flex;
        justify-content: center; /* Centra los links en el contenedor */
        gap: 20px; /* Ajusta el espacio entre los links */
        margin: 0;
        padding: 0;
      }
    
      /* Cada item de la lista */
      nav ul li {
        list-style: none;
      }
    
      /* Enlaces */
      nav ul li a {
        font-size: 0.9rem;             /* Tamaño más grande */
        font-weight: 700;            /* Más grueso */
        color: #1a1a1a;              /* Color oscuro que resalta */
        text-transform: uppercase;   /* Todo en mayúsculas para más impacto */
        letter-spacing: 1px;         /* Espaciado entre letras */
        text-decoration: none;       /* Sin subrayado */
        transition: color 0.3s ease;
      }
      
      nav ul li a:hover {
        color: #FFD700;              /* Cambia de color al pasar el mouse */
      }
    
      /* Botones de contacto */
      .contact {
        display: flex;
        justify-content: center; /* Centra los botones */
        gap: 20px;
        margin-left: 20px;
      }
    
      .button-yellow, .button-whatsapp {
        padding: 12px 30px;
        font-size: 0.9rem;
        border-radius: 5px;
        cursor: pointer;
      }
    
      /* Botón Te Asesoramos */
      .button-yellow {
        background-color: #FFD700;
        color: black;
      }
    
      .button-yellow:hover {
        background-color: #FFB700;
      }
    
      /* Botón WhatsApp */
      
    
      /* Menú móvil oculto */
      .mobile-menu {
        display: none;
      }
  }
  /* MEDIA QUERY */
  @media (max-width: 1024px) {
   

    nav {
        display: none; /* ocultamos nav clásico */
      }
    
      .hamburger {
        display: flex;
      }
    
      .mobile-menu {
        display: block;
      }
    
      .mobile-menu ul li a {
        color: black;
        text-decoration: none; /* Sin subrayado */
      }
      nav ul {
        gap: 0.5rem; /* Menos espacio entre los enlaces */
      }
    
      nav a {
        font-size: 0.9rem; /* Letra más pequeña */
      }
  }

  @media (max-width: 1366px) {
    header {
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 30%, rgba(0, 0, 0, 0) 70%);
      padding: 25px 0 0.1px 0; /* 40px arriba, 10px abajo */
    }

  }



.contact-page {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    color: #222;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-page form {
    display: flex;
    flex-direction: column;
}

.contact-page input,
.contact-page textarea {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
}

.contact-page button {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.contact-page button:hover {
    background-color: #555;
}


/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    
  }
  
  .carousel {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slides {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  .hero-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 700px;
    margin: 0 1rem;
    
  }


  
  .hero-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'BankGothic', sans-serif !important;
  }
  
  .hero-content p {
    font-size: 1.07rem;
    margin-bottom: 4rem;
  }
  
  .btn-primary {
    background-color: #c7c8ca !important;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #e6c200;
    cursor: pointer;
  }
  
  .hero-logo {
    max-width: 180px;
    margin: 0 auto 20px auto;
    display: block;
    animation: fadeUp 1.5s ease-out forwards;
    opacity: 0;
  }
  
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 1023px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  }
  
  
/* Servicios */
.services {
  padding: 4rem 1rem;
  background-color: #f8f8f8;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 1.5rem;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1023px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }
}

/* NOSOTROSO */
.about-section {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f7f7;
}

/* Estilo del contenedor */
.about-container {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 5%;
  justify-content: space-between;
  align-items: center;
}

/* Estilo de texto */
.about-text {
  flex: 1;
  padding-right: 40px; /* Dejar espacio para la imagen */
  min-width: 300px;
}

.about-text h2 {
  font-size: 3rem;
  color: #1d1d1d;
}

.divider {
  width: 60px;
  height: 4px;
  background-color: #f4c400;
  margin: 15px 0 30px;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Estilo para Misión y Visión, organizados en un contenedor común */
.mission-vision-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.mission,
.vision {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
  width: 48%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mission h3,
.vision h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.mission p,
.vision p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* Estilo para la imagen */
.about-image {
  flex: 1;
  min-width: 300px;
  max-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px; /* Borde redondeado */
}

/* Estilo para la barra de estadísticas */
.stats-bar {
  background-color: #c7c8ca;
  display: flex;
  justify-content: space-around;
  padding: 10px 0 0 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  margin: 10px 20px;
  min-width: 180px;
}

.stat h3 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  color: #1d1d1d;
}

.stat p {
  font-weight: bold;
  color: #1d1d1d;
}

/* Responsivos */
@media (max-width: 1023px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-image {
    max-height: 300px;
  }

  /* Ajustes para la misión y visión en dispositivos móviles */
  .mission-vision-container {
    flex-direction: column;
  }

  .mission,
  .vision {
    width: 100%;
    margin-top: 20px;
  }
}

/* Proyectos */
.project-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.project-card {
  background-color: #fff;
  padding: 24px;
  width: calc(20% - 20px); /* 5 cards por fila, restando espacio del gap */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.project-card h3 {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.project-card p {
  margin-top: 12px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
.projects h2 {
  margin-top: 40px;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #1a1a1a;
  font-weight: 600;
  font-family: inherit; /* mantiene la fuente que venías usando */
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}

.projects h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4af37; /* Dorado elegante */
  margin: 14px auto 0;
  border-radius: 2px;
  opacity: 0.9;
}
/* Responsive */
@media (max-width: 1200px) {
  .project-card {
    width: calc(33.333% - 20px); /* 3 por fila */
  }
}

@media (max-width: 768px) {
  .project-card {
    width: calc(50% - 20px); /* 2 por fila */
  }
}

@media (max-width: 480px) {
  .project-card {
    width: 100%; /* 1 por fila */
  }
}

/* Testimonios */

.clientes-section {
  padding: 60px 20px;
  background: #fff; /* Color de fondo */
  text-align: center;
}

.subtitle {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.logos {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.logos-slide {
  display: flex;
  width: max-content;
  animation: slide 20s linear infinite;
}

.logos-slide img {
  height: 50px;
  margin: 0 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.logos::before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.logos::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.contacto-section {
  background-color: #1c1c1c;
  padding: 60px 20px;
  color: #f5f5f5;
}

/* Título */
.contacto-title {
  text-align: center;
  margin-bottom: 40px;
}

.contacto-title h2 {
  font-size: 32px;
  font-weight: bold;
}

/* Contenedor principal con flex-wrap */
.contacto-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mapa */
.mapa-container {
  flex: 1 1 300px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  min-width: 280px;
  height: 350px;
  position: relative;
  right: 250px; /* Solo se aplicará en pantallas grandes */
}

/* Formulario */
.formulario-container {
  flex: 1 1 400px;
  min-width: 180px;
  position: relative;
  right: -250px; /* Solo se aplicará en pantallas grandes */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #2b2b2b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  width: 600px;
  height: 350px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  background-color: #444;
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: #c7c8ca;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #f4c400;
}

/* Responsive: Para pantallas más pequeñas */
@media (max-width: 1023px) {
  .contacto-container {
    flex-direction: column;
    align-items: center;
  }

  .mapa-container,
  .formulario-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px; /* Espacio entre el mapa y el formulario */
    position: static; /* Eliminar el 'right' en pantallas pequeñas */
  }
  
  .mapa-container {
    height: 300px; /* Ajuste de altura para pantallas pequeñas */
  }

  .contact-form {
    width: 100%;  /* Asegura que el contenedor tome el 100% del ancho en móviles */
    box-sizing: border-box;  /* Incluye el padding dentro del ancho total */
    padding: 20px;
  }

}


/* whatsapp burbuja */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  z-index: 1000;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* footer */

footer {
  background-color: #333;
  color: white;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  position: relative;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2); /* Sombra sutil para profundidad */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* CAMBIA esto a: */
  align-items: flex-start;
}

.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: justify;
}

.footer-logo {
  margin-right: 20px;
}

.footer-logo img {
  height: 120px;     /* Tamaño fijo principal */
  max-width: 100%;  /* Para evitar desbordes en móviles */
  object-fit: contain;
  margin-top: 7px;
}
.footer-info {
  flex: 1;
  text-align: justify;
  position: relative;
  right: 450px;
}

.footer-left p,
.footer-middle p {
  margin: 5px 0;
}

.footer-left p {
  font-size: 16px;
}

.footer-middle nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.footer-middle nav ul li {
  margin-right: 30px;
  position: relative;
}

.footer-middle nav ul li::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #FFD700; /* Línea decorativa debajo de los enlaces */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-middle nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-middle nav ul li a:hover {
  color: #FFD700;
}

.footer-middle nav ul li:hover::after {
  opacity: 1; /* Muestra la línea decorativa al pasar el cursor */
}

.social-icons {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.social-icons a {
  color: white;
  margin: 0 20px;
  font-size: 28px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #FFD700;
  transform: scale(1.1); /* Aumento de tamaño al pasar el cursor */
}

.social-icons li {
  margin-left: 15px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons li a:hover img {
  opacity: 0.7;
  transform: scale(1.1);
}

footer a {
  color: white; /* Elimina el azul predeterminado */
  text-decoration: none; /* Elimina subrayado si lo hay */
}

footer a:hover {
  color: #FFD700; /* Si quieres cambiar el color al pasar el mouse */
}

/* Respuesta para dispositivos móviles */
@media (max-width: 1023px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-middle nav ul {
      flex-direction: column;
      align-items: center;
  }
  .footer-left, .footer-info {
    width: 100%; /* Asegura que los elementos tomen el 100% del ancho en móviles */
    text-align: center; /* Centra el texto */
  }
  .footer-info {
    position: static;  /* Remueve el posicionamiento relativo */
    right: auto;       /* Elimina el desplazamiento a la derecha */
  }

  .social-icons {
      justify-content: center;
      margin-top: 15px;
  }

  .footer-middle nav ul li {
      margin-right: 0;
      margin-bottom: 15px; /* Espaciado entre los enlaces */
  }

  .social-icons li {
      margin-left: 10px;
  }
  
}
@media (max-width: 768px) {
  .footer-logo {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
  }

  .footer-logo img {
    height: 100px; /* Un poco más pequeño en móviles si quieres */
  }
}

/* Estilos específicos para la sección de "Empleos" */
.empleos-section {
  background-color: #444;
  color: white;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.empleos-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.empleos-section p {
  font-size: 16px;
  margin: 5px 0;
}

.empleos-section a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.empleos-section a:hover {
  color: white;
}